package schuchert.agent;

import java.io.InputStream;

import org.junit.Test;

public class ManifestTest {
    @Test
    public void manifestHasCorrectClassName() throws Exception {
        InputStream stream = getClass().getClassLoader().getResourceAsStream("META-INF/MANIFEST.MF");
        try {
        } finally {
            stream.close();
        }
    }
}
